
module Hydrocraft
{

	item BoxOfThings
	{
		Weight				=	1,
		Type				=	Normal,
		DisplayName			=	Box of Things,
		Icon				=	HCCardboardboxsealed,
		StaticModel	 = BoxOfThings,
        WorldStaticModel = BoxOfThings,
	}

	recipe Store 12 in a Box
	{
		[Recipe.GetItemTypes.Box12]=12,
		Result:BoxOfThings,
		Time:15,
		OnCreate:Recipe.OnCreate.Hydrocraft.BoxThings,
		CanBeDoneFromFloor:true,
	}

	recipe Store 25 in a Box
	{
		[Recipe.GetItemTypes.Box25]=25,
		Result:BoxOfThings,
		Time:15,
		OnCreate:Recipe.OnCreate.Hydrocraft.BoxThings,
		CanBeDoneFromFloor:true,
	}

	recipe Store 50 in a Box
	{
		[Recipe.GetItemTypes.Box50]=50,
		Result:BoxOfThings,
		Time:15,
		OnCreate:Recipe.OnCreate.Hydrocraft.BoxThings,
		CanBeDoneFromFloor:true,
	}

	recipe Store 100 in a Box
	{
		[Recipe.GetItemTypes.Box100]=100,
		Result:BoxOfThings,
		Time:15,
		OnCreate:Recipe.OnCreate.Hydrocraft.BoxThings,
		CanBeDoneFromFloor:true,
	}

	recipe Open Box
	{
		BoxOfThings,
		Result:BoxOfThings,
		RemoveResultItem:true,
		Time:15,
		OnCreate:Recipe.OnCreate.Hydrocraft.OpenBox,
	}

}